home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / cgitb.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  13KB  |  363 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """More comprehensive traceback formatting for Python scripts.
  5.  
  6. To enable this module, do:
  7.  
  8.     import cgitb; cgitb.enable()
  9.  
  10. at the top of your script.  The optional arguments to enable() are:
  11.  
  12.     display     - if true, tracebacks are displayed in the web browser
  13.     logdir      - if set, tracebacks are written to files in this directory
  14.     context     - number of lines of source code to show for each stack frame
  15.     format      - 'text' or 'html' controls the output format
  16.  
  17. By default, tracebacks are displayed but not saved, the context is 5 lines
  18. and the output format is 'html' (for backwards compatibility with the
  19. original use of this module)
  20.  
  21. Alternatively, if you have caught an exception and want cgitb to display it
  22. for you, call cgitb.handler().  The optional argument to handler() is a
  23. 3-item tuple (etype, evalue, etb) just like the value of sys.exc_info().
  24. The default handler displays output as HTML.
  25. """
  26. __author__ = 'Ka-Ping Yee'
  27. __version__ = '$Revision: 1.15.4.1 $'
  28. import sys
  29.  
  30. def reset():
  31.     '''Return a string that resets the CGI and browser to a known state.'''
  32.     return '<!--: spam\nContent-Type: text/html\n\n<body bgcolor="#f0f0f8"><font color="#f0f0f8" size="-5"> -->\n<body bgcolor="#f0f0f8"><font color="#f0f0f8" size="-5"> --> -->\n</font> </font> </font> </script> </object> </blockquote> </pre>\n</table> </table> </table> </table> </table> </font> </font> </font>'
  33.  
  34. __UNDEF__ = []
  35.  
  36. def small(text):
  37.     if text:
  38.         return '<small>' + text + '</small>'
  39.     else:
  40.         return ''
  41.  
  42.  
  43. def strong(text):
  44.     if text:
  45.         return '<strong>' + text + '</strong>'
  46.     else:
  47.         return ''
  48.  
  49.  
  50. def grey(text):
  51.     if text:
  52.         return '<font color="#909090">' + text + '</font>'
  53.     else:
  54.         return ''
  55.  
  56.  
  57. def lookup(name, frame, locals):
  58.     '''Find the value for a given name in the given environment.'''
  59.     if name in locals:
  60.         return ('local', locals[name])
  61.     
  62.     if name in frame.f_globals:
  63.         return ('global', frame.f_globals[name])
  64.     
  65.     if '__builtins__' in frame.f_globals:
  66.         builtins = frame.f_globals['__builtins__']
  67.         if type(builtins) is type({ }):
  68.             if name in builtins:
  69.                 return ('builtin', builtins[name])
  70.             
  71.         elif hasattr(builtins, name):
  72.             return ('builtin', getattr(builtins, name))
  73.         
  74.     
  75.     return (None, __UNDEF__)
  76.  
  77.  
  78. def scanvars(reader, frame, locals):
  79.     '''Scan one logical line of Python and look up values of variables used.'''
  80.     import tokenize as tokenize
  81.     import keyword as keyword
  82.     (vars, lasttoken, parent, prefix, value) = ([], None, None, '', __UNDEF__)
  83.     for ttype, token, start, end, line in tokenize.generate_tokens(reader):
  84.         if ttype == tokenize.NEWLINE:
  85.             break
  86.         
  87.         if ttype == tokenize.NAME and token not in keyword.kwlist:
  88.             if lasttoken == '.':
  89.                 if parent is not __UNDEF__:
  90.                     value = getattr(parent, token, __UNDEF__)
  91.                     vars.append((prefix + token, prefix, value))
  92.                 
  93.             else:
  94.                 (where, value) = lookup(token, frame, locals)
  95.                 vars.append((token, where, value))
  96.         elif token == '.':
  97.             prefix += lasttoken + '.'
  98.             parent = value
  99.         else:
  100.             (parent, prefix) = (None, '')
  101.         lasttoken = token
  102.     
  103.     return vars
  104.  
  105.  
  106. def html(.0, context = 5):
  107.     '''Return a nice HTML document describing a given traceback.'''
  108.     (etype, evalue, etb) = .0
  109.     import os as os
  110.     import types as types
  111.     import time as time
  112.     import traceback as traceback
  113.     import linecache
  114.     import inspect as inspect
  115.     import pydoc
  116.     if type(etype) is types.ClassType:
  117.         etype = etype.__name__
  118.     
  119.     pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable
  120.     date = time.ctime(time.time())
  121.     head = '<body bgcolor="#f0f0f8">' + pydoc.html.heading('<big><big>%s</big></big>' % strong(pydoc.html.escape(str(etype))), '#ffffff', '#6622aa', pyver + '<br>' + date) + '\n<p>A problem occurred in a Python script.  Here is the sequence of\nfunction calls leading up to the error, in the order they occurred.</p>'
  122.     indent = '<tt>' + small(' ' * 5) + ' </tt>'
  123.     frames = []
  124.     records = inspect.getinnerframes(etb, context)
  125.     for frame, file, lnum, func, lines, index in records:
  126.         if file:
  127.             file = os.path.abspath(file)
  128.             link = '<a href="file://%s">%s</a>' % (file, pydoc.html.escape(file))
  129.         else:
  130.             file = link = '?'
  131.         (args, varargs, varkw, locals) = inspect.getargvalues(frame)
  132.         call = ''
  133.         if func != '?':
  134.             call = 'in ' + strong(func) + inspect.formatargvalues(args, varargs, varkw, locals, formatvalue = (lambda value: '=' + pydoc.html.repr(value)))
  135.         
  136.         highlight = { }
  137.         
  138.         def reader(lnum = [
  139.             lnum]):
  140.             highlight[lnum[0]] = 1
  141.             
  142.             try:
  143.                 return linecache.getline(file, lnum[0])
  144.             finally:
  145.                 lnum[0] += 1
  146.  
  147.  
  148.         vars = scanvars(reader, frame, locals)
  149.         rows = [
  150.             '<tr><td bgcolor="#d8bbff">%s%s %s</td></tr>' % ('<big> </big>', link, call)]
  151.         if index is not None:
  152.             i = lnum - index
  153.             for line in lines:
  154.                 num = small(' ' * (5 - len(str(i))) + str(i)) + ' '
  155.                 line = '<tt>%s%s</tt>' % (num, pydoc.html.preformat(line))
  156.                 if i in highlight:
  157.                     rows.append('<tr><td bgcolor="#ffccee">%s</td></tr>' % line)
  158.                 else:
  159.                     rows.append('<tr><td>%s</td></tr>' % grey(line))
  160.                 i += 1
  161.             
  162.         
  163.         done = { }
  164.         dump = []
  165.         for name, where, value in vars:
  166.             if name in done:
  167.                 continue
  168.             
  169.             done[name] = 1
  170.             if value is not __UNDEF__:
  171.                 if where in [
  172.                     'global',
  173.                     'builtin']:
  174.                     name = '<em>%s</em> ' % where + strong(name)
  175.                 elif where == 'local':
  176.                     name = strong(name)
  177.                 else:
  178.                     name = where + strong(name.split('.')[-1])
  179.                 dump.append('%s = %s' % (name, pydoc.html.repr(value)))
  180.                 continue
  181.             dump.append(name + ' <em>undefined</em>')
  182.         
  183.         rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))
  184.         frames.append('\n<table width="100%%" cellspacing=0 cellpadding=0 border=0>\n%s</table>' % '\n'.join(rows))
  185.     
  186.     exception = [
  187.         '<p>%s: %s' % (strong(pydoc.html.escape(str(etype))), pydoc.html.escape(str(evalue)))]
  188.     if type(evalue) is types.InstanceType:
  189.         for name in dir(evalue):
  190.             if name[:1] == '_':
  191.                 continue
  192.             
  193.             value = pydoc.html.repr(getattr(evalue, name))
  194.             exception.append('\n<br>%s%s =\n%s' % (indent, name, value))
  195.         
  196.     
  197.     import traceback as traceback
  198.     return head + ''.join(frames) + ''.join(exception) + "\n\n\n<!-- The above is a description of an error in a Python program, formatted\n     for a Web browser because the 'cgitb' module was enabled.  In case you\n     are not reading this in a Web browser, here is the original traceback:\n\n%s\n-->\n" % ''.join(traceback.format_exception(etype, evalue, etb))
  199.  
  200.  
  201. def text(.0, context = 5):
  202.     '''Return a plain text document describing a given traceback.'''
  203.     (etype, evalue, etb) = .0
  204.     import os
  205.     import types
  206.     import time
  207.     import traceback
  208.     import linecache
  209.     import inspect
  210.     import pydoc
  211.     if type(etype) is types.ClassType:
  212.         etype = etype.__name__
  213.     
  214.     pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable
  215.     date = time.ctime(time.time())
  216.     head = '%s\n%s\n%s\n' % (str(etype), pyver, date) + '\nA problem occurred in a Python script.  Here is the sequence of\nfunction calls leading up to the error, in the order they occurred.\n'
  217.     frames = []
  218.     records = inspect.getinnerframes(etb, context)
  219.     for frame, file, lnum, func, lines, index in records:
  220.         if not file or os.path.abspath(file):
  221.             pass
  222.         file = '?'
  223.         (args, varargs, varkw, locals) = inspect.getargvalues(frame)
  224.         call = ''
  225.         if func != '?':
  226.             call = 'in ' + func + inspect.formatargvalues(args, varargs, varkw, locals, formatvalue = (lambda value: '=' + pydoc.text.repr(value)))
  227.         
  228.         highlight = { }
  229.         
  230.         def reader(lnum = [
  231.             lnum]):
  232.             highlight[lnum[0]] = 1
  233.             
  234.             try:
  235.                 return linecache.getline(file, lnum[0])
  236.             finally:
  237.                 lnum[0] += 1
  238.  
  239.  
  240.         vars = scanvars(reader, frame, locals)
  241.         rows = [
  242.             ' %s %s' % (file, call)]
  243.         if index is not None:
  244.             i = lnum - index
  245.             for line in lines:
  246.                 num = '%5d ' % i
  247.                 rows.append(num + line.rstrip())
  248.                 i += 1
  249.             
  250.         
  251.         done = { }
  252.         dump = []
  253.         for name, where, value in vars:
  254.             if name in done:
  255.                 continue
  256.             
  257.             done[name] = 1
  258.             if value is not __UNDEF__:
  259.                 if where == 'global':
  260.                     name = 'global ' + name
  261.                 elif where != 'local':
  262.                     name = where + name.split('.')[-1]
  263.                 
  264.                 dump.append('%s = %s' % (name, pydoc.text.repr(value)))
  265.                 continue
  266.             dump.append(name + ' undefined')
  267.         
  268.         rows.append('\n'.join(dump))
  269.         frames.append('\n%s\n' % '\n'.join(rows))
  270.     
  271.     exception = [
  272.         '%s: %s' % (str(etype), str(evalue))]
  273.     if type(evalue) is types.InstanceType:
  274.         for name in dir(evalue):
  275.             value = pydoc.text.repr(getattr(evalue, name))
  276.             exception.append('\n%s%s = %s' % (' ' * 4, name, value))
  277.         
  278.     
  279.     import traceback
  280.     return head + ''.join(frames) + ''.join(exception) + '\n\nThe above is a description of an error in a Python program.  Here is\nthe original traceback:\n\n%s\n' % ''.join(traceback.format_exception(etype, evalue, etb))
  281.  
  282.  
  283. class Hook:
  284.     '''A hook to replace sys.excepthook that shows tracebacks in HTML.'''
  285.     
  286.     def __init__(self, display = 1, logdir = None, context = 5, file = None, format = 'html'):
  287.         self.display = display
  288.         self.logdir = logdir
  289.         self.context = context
  290.         if not file:
  291.             pass
  292.         self.file = sys.stdout
  293.         self.format = format
  294.  
  295.     
  296.     def __call__(self, etype, evalue, etb):
  297.         self.handle((etype, evalue, etb))
  298.  
  299.     
  300.     def handle(self, info = None):
  301.         if not info:
  302.             pass
  303.         info = sys.exc_info()
  304.         if self.format == 'html':
  305.             self.file.write(reset())
  306.         
  307.         if not self.format == 'html' or html:
  308.             pass
  309.         formatter = text
  310.         plain = False
  311.         
  312.         try:
  313.             doc = formatter(info, self.context)
  314.         except:
  315.             import traceback
  316.             doc = ''.join(traceback.format_exception(*info))
  317.             plain = True
  318.  
  319.         if self.display:
  320.             if plain:
  321.                 doc = doc.replace('&', '&').replace('<', '<')
  322.                 self.file.write('<pre>' + doc + '</pre>\n')
  323.             else:
  324.                 self.file.write(doc + '\n')
  325.         else:
  326.             self.file.write('<p>A problem occurred in a Python script.\n')
  327.         if self.logdir is not None:
  328.             import os
  329.             import tempfile as tempfile
  330.             suffix = [
  331.                 '.txt',
  332.                 '.html'][self.format == 'html']
  333.             (fd, path) = tempfile.mkstemp(suffix = suffix, dir = self.logdir)
  334.             
  335.             try:
  336.                 file = os.fdopen(fd, 'w')
  337.                 file.write(doc)
  338.                 file.close()
  339.                 msg = '<p> %s contains the description of this error.' % path
  340.             except:
  341.                 msg = '<p> Tried to save traceback to %s, but failed.' % path
  342.  
  343.             self.file.write(msg + '\n')
  344.         
  345.         
  346.         try:
  347.             self.file.flush()
  348.         except:
  349.             pass
  350.  
  351.  
  352.  
  353. handler = Hook().handle
  354.  
  355. def enable(display = 1, logdir = None, context = 5, format = 'html'):
  356.     """Install an exception handler that formats tracebacks as HTML.
  357.  
  358.     The optional argument 'display' can be set to 0 to suppress sending the
  359.     traceback to the browser, and 'logdir' can be set to a directory to cause
  360.     tracebacks to be written to files there."""
  361.     sys.excepthook = Hook(display = display, logdir = logdir, context = context, format = format)
  362.  
  363.